home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_300
/
359_11
/
patch5.000
/
EMU387
/
COMPARE.H
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-09-11
|
227 b
|
15 lines
#ifndef _COMPARE_H_
#define _COMPARE_H_
int compare(reg& a, reg& b);
#define COMP_A_GT_B 1
#define COMP_A_EQ_B 2
#define COMP_A_LT_B 3
#define COMP_NOCOMP 4
#define COMP_NAN 0x40
#define COMP_SNAN 0x80
#endif